home *** CD-ROM | disk | FTP | other *** search
- rem DESCENT 2 self-playing Movie/Trailer
- rem NOTE: more soundcard support is provided.
- rem Type "trailer ?" for all soundcard options.
-
- @echo off
- cls
- echo ╔═══════════════════════╗
- echo ║ DESCENT 2 TRAILER ║
- echo ║ (non-playable demo) ║
- echo ╚═══════════════════════╝
- echo D2 trailer requires 486/33 or better
- echo ───────────────────────────────────────
- echo Select Digital Sound device
- echo 0 - exit
- echo 1 - no sound card
- echo 2 - Sound Blaster compatible
- echo 3 - Sound Blaster 16/AWE32
- echo 4 - ProAudio Spectrum
- echo 5 - Gravis Ultrasound
- echo ───────────────────────────────────────
-
- :sound
- choice /C012345 "Enter choice "
- if errorlevel 6 goto :gus
- if errorlevel 5 goto :spectrum
- if errorlevel 4 goto :blast16
- if errorlevel 3 goto :blast
- if errorlevel 2 goto :nosound
- if errorlevel 1 goto :done
- goto :sound
-
- :nosound
- choice "Continuously loop trailer "
- if errorlevel 1 goto :no2
- trailer
- goto :done
- :no2
- trailer loop
- goto :done
-
- :blast
- choice "Continuously loop trailer "
- if errorlevel 2 goto :blast2
- trailer loop SB
- goto :done
- :blast2
- trailer SB
- goto :done
-
- :blast16
- choice "Continuously loop trailer "
- if errorlevel 2 goto :bl162
- trailer loop SB16
- goto :done
- :bl162
- trailer SB16
- goto :done
-
- :spectrum
- choice "Continuously loop trailer "
- if errorlevel 2 goto :spec2
- trailer loop PAS
- goto :done
- :spec2
- trailer PAS
- goto :done
-
- :gus
- choice "Continuously loop trailer "
- if errorlevel 2 goto :gus2
- trailer loop GUS
- goto :done
- :gus2
- trailer GUS
-
- :done